home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 47.7z / BS1 part 47 / HiSoft BASIC v1.04 (1989)(HiSoft)(Disk 2 of 2)[h Band].7z / HiSoft BASIC v1.04 (1989)(HiSoft)(Disk 2 of 2)[h Band].adf / graphics / menu1.bas < prev    next >
Encoding:
BASIC Source File  |  1988-12-02  |  253 b   |  17 lines

  1. MENU 1,0,1,"Selection"
  2. FOR x = 1 TO 9
  3.      MENU 1,x,1,"Option "+CHR$(48+x)
  4. NEXT x
  5. FOR x = 2 TO 4    
  6.      MENU x,0,0,""
  7. NEXT x
  8. ON MENU GOSUB Selection
  9. MENU ON
  10. Delay:
  11.  GOTO Delay
  12. Selection:
  13.  LOCATE 10,20
  14.  PRINT "You chose menu option";MENU(1);
  15.  RETURN
  16.  
  17.